@charset "utf-8";
body  {
	font: 100% Arial, Helvetica, sans-serif;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	background-color: #FAFAFA;
	background-image: url(../img08/abp-bgblend.jpg);
	background-repeat: repeat-x;
	background-position: left top;
}
.thrColAbsHdr #container {
	position: relative; /* adding position: relative allows you to position the two sidebars relative to this container */
	width: 973px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	border: 6px solid #FFFFFF;
	padding: 0px;
} 

/* Tips for absolutely positioned sidebars with header and footer:
1. Absolutely positioned (AP) elements must be given a top and side value, either right or left. (As a default, if no top value is given, the AP element will begin directly after the last element in the source order of the page. This means, if the sidebars are first element in the #container in the document's source order, they will appear at the top of the #container even without being given a top value. However, if they are moved later in the source order for any reason, they'll need a top value to appear where you desire.
2. Absolutely positioned (AP) elements are taken out of the flow of the document. This means the elements around them don't know they exist and don't account for them when taking up their proper space on the page. Thus, an AP div should only be used as a side column if you are sure the middle #mainContent div will always contain the most content. If either sidebar were to contain more content, that sidebar would run over the bottom of the parent div, and in this case the footer as well, and the sidebar would not appear to be contained.
3. If the above mentioned requirements are met, absolutely positioned sidebars can be an easy way to control the source order of the document.
4. If the source order is changed, the top value should be equal to the height of the header since this will cause the columns to visually meet the header.
*/
.thrColAbsHdr #header {
	padding: 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	background-color: #FFFFFF;
	height: 280px;
	width: 100%;
	margin: 0px;
} 
.thrColAbsHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
.thrColAbsHdr #sidebar1 {
	left: 0;
	width: 120px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #FFFFFF;
	background-image: url(../img08/ads-bgblend.jpg);
	background-repeat: repeat-x;
	background-position: left top;
	padding-top: 20px;
	padding-right: 17px;
	padding-bottom: 6px;
	padding-left: 18px;
}
.thrColAbsHdr #members {
	padding: 0px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
	height: 600px;
}

.thrColAbsHdr #sidebar2 {
	width: 143px; /* padding keeps the content of the div away from the edges */
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #000000;
	background-image: url(../img08/abp-poll-bground.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	padding-top: 60px;
	padding-right: 6px;
	padding-bottom: 18px;
	padding-left: 6px;
	line-height: 10px;
	font-weight: bold;
}
.thrColAbsHdr #sidebar2a {
	width: 143px; /* padding keeps the content of the div away from the edges */
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #000000;
	background-image: url(../img08/abp-find-a-bodyshop.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	padding-top: 80px;
	padding-right: 6px;
	padding-bottom: 18px;
	padding-left: 6px;
	line-height: 10px;
	font-weight: bold;
}
.thrColAbsHdr #sidebarevent {
	width: 143px; /* padding keeps the content of the div away from the edges */
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #000000;
	background-repeat: no-repeat;
	background-position: left top;
	padding-top: 5px;
	padding-right: 6px;
	padding-bottom: 18px;
	padding-left: 6px;
	line-height: 10px;
	font-weight: bold;
}
.thrColAbsHdr #sidebar2 h3 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
}

.thrColAbsHdr #mainContent {
	padding-top: 5px;
	padding-right: 18px;
	padding-bottom: 0px;
	padding-left: 18px;
	background-image: url(../img08/forum-latest-bground.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	margin: 0px;
}
.thrColAbsHdr #footer {
	background-color: #FFFFFF;
	padding: 0;
} 
.thrColAbsHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #666666;
	vertical-align: middle;
}
.thrColAbsHdr #footer a {
	color: #333333;
	text-decoration: none;
}

.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
#divider1 {
	margin: 0px;
	padding: 0px;
	height: 10px;
	width: 968px;
}

.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
	width: 100%;
}.thrColAbsHdr #header-left {
	position: absolute;
	top: 0px;
	left: 0;
	width: 155px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #FFFFFF;
	right: 0px;
	bottom: 0px;
	padding: 0px;
	height: 280px;
}
.thrColAbsHdr #header-right {
	margin-top: 0;
	margin-right: 0px;
	margin-bottom: 0;
	margin-left: 156px;
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
	background-color: #FFFFFF;
	float: right;
	width: 812px;
	height: 280px;
}
#divider2 {
	margin: 0px;
	padding: 0px;
	height: 10px;
	width: 968px;
}
.thrColAbsHdr #mainContent p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #333333;
}
.ban-line {
	border-bottom-width: 6px;
	border-bottom-style: solid;
	border-bottom-color: #FFFFFF;
}
.topnav-left {
	background-image: url(../img08/topnav-bground.gif);
	background-repeat: no-repeat;
	background-position: left top;
	background-color: #CC0000;
	padding-left: 14px;
	color: #660000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
}
.topnav-right {
	background-image: url(../img08/topnav-bground.gif);
	background-repeat: no-repeat;
	background-position: right top;
	background-color: #CC0000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	padding: 0px;
	margin: 0px;
}

.topnav-left a{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: none;
	margin: 0px;
	padding-top: 1px;
	padding-right: 3px;
	padding-bottom: 1px;
	padding-left: 3px;
}
.thrColAbsHdr #member-links {
	padding-top: 0px;
	padding-right: 6px;
	padding-bottom: 0px;
	padding-left: 6px;
	color: #FFFFCC;
	font-weight: bold;
	margin: 0px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 13px;
}
.thrColAbsHdr #member-links li {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #FF0000;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #660000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
}
.thrColAbsHdr #member-links ul {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}
.thrColAbsHdr #member-links a {
	padding-top: 1px;
	padding-right: 0px;
	padding-bottom: 1px;
	padding-left: 10px;
	display: block;
	font-weight: bold;
	color: #FFFFFF;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	margin: 0px;
}
.thrColAbsHdr #member-links a:hover {
	padding-top: 1px;
	padding-right: 0px;
	padding-bottom: 1px;
	padding-left: 10px;
	display: block;
	font-weight: bold;
	color: #000000;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	background-color: #FFFFCC;
	margin: 0px;
}
.topnav-left a:hover {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
	color: #000000;
	text-decoration: none;
	padding-top: 1px;
	padding-right: 3px;
	padding-bottom: 1px;
	padding-left: 3px;
	background-color: #FFFFCC;
	margin: 0px;
}
.thrColAbsHdr #sidebar-video {
	right: 0;
	width: 143px; /* padding keeps the content of the div away from the edges */
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #000000;
	background-image: url(../img08/abp-poll-video-link.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	padding-top: 70px;
	padding-right: 6px;
	padding-bottom: 6px;
	padding-left: 6px;
	line-height: 10px;
	font-weight: bold;
	height: 130px;
	text-align: center;
}
.thrColAbsHdr #sidebar-video2 {
	right: 0;
	width: 143px; /* padding keeps the content of the div away from the edges */
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #000000;
	background-image: url(../img08/abp-poll-video-link2.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	padding-top: 70px;
	padding-right: 6px;
	padding-bottom: 6px;
	padding-left: 6px;
	line-height: 10px;
	font-weight: bold;
	height: 130px;
	text-align: center;
}
iframe {

}

.thrColAbsHdr #mainContentFull {
	margin-top: 5px;
	margin-right: 161px;
	margin-bottom: 0px;
	margin-left: 161px;
	padding: 0px;
}
.thrColAbsHdr #mainContentWide {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding: 0px;
}

.thrColAbsHdr #mainContentSections {
	margin-top: 5px;
	margin-right: 161px;
	margin-bottom: 0px;
	margin-left: 161px;
	padding: 0px;
}

.thrColAbsHdr #pagetop-home {
	background-image: url(../img08/pagetop-indicator.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	height: 150px;
	width: 662px;
	padding-right: 133px;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 18px;
	border-top-width: 6px;
	border-top-style: solid;
	border-top-color: #FFFFFF;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-right-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	border-left-color: #FFFFFF;
	background-color: #003366;
}
.thrColAbsHdr #pagetop-home p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 12px;
	color: #FFFFCC;
}
.thrColAbsHdr #pagetop-home h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 16px;
	color: #FFFFFF;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.thrColAbsHdr  #pagetop-news {
	background-image: url(../img08/pagetop-library.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	height: 150px;
	width: 662px;
	padding-right: 133px;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 18px;
	border-top-width: 6px;
	border-top-style: solid;
	border-top-color: #FFFFFF;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-right-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	border-left-color: #FFFFFF;
	background-color: #003366;
}

.thrColAbsHdr #pagetop-news p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 12px;
	color: #FFFFCC;
}
.thrColAbsHdr #pagetop-news h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 16px;
	color: #FFFFFF;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.thrColAbsHdr #pagetop-join {
	background-image: url(../img08/pagetop-join.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	height: 150px;
	width: 662px;
	padding-right: 133px;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 18px;
	border-top-width: 6px;
	border-top-style: solid;
	border-top-color: #FFFFFF;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-right-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	border-left-color: #FFFFFF;
	background-color: #003366;
}
.thrColAbsHdr #pagetop-join p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 12px;
	color: #FFFFCC;
}
.thrColAbsHdr #pagetop-join h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 16px;
	color: #FFFFFF;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.thrColAbsHdr #pagetop-diary {
	background-image: url(../img08/pagetop-industry-diary.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	height: 150px;
	width: 662px;
	padding-right: 133px;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 18px;
	border-top-width: 6px;
	border-top-style: solid;
	border-top-color: #FFFFFF;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-right-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	border-left-color: #FFFFFF;
	background-color: #003366;
}
.thrColAbsHdr #pagetop-diary p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 12px;
	color: #FFFFCC;
}
.thrColAbsHdr #pagetop-diary h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 16px;
	color: #FFFFFF;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.thrColAbsHdr #pagetop-events {
	background-image: url(../img08/pagetop-club-events.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	height: 150px;
	width: 662px;
	padding-right: 133px;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 18px;
	border-top-width: 6px;
	border-top-style: solid;
	border-top-color: #FFFFFF;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-right-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	border-left-color: #FFFFFF;
	background-color: #003366;
}
.thrColAbsHdr #pagetop-events p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 12px;
	color: #FFFFCC;
}
.thrColAbsHdr #pagetop-events h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 16px;
	color: #FFFFFF;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.thrColAbsHdr #pagetop-pas {
	background-image: url(../img08/pagetop-pas-kitemark.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	height: 150px;
	width: 662px;
	padding-right: 133px;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 18px;
	border-top-width: 6px;
	border-top-style: solid;
	border-top-color: #FFFFFF;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-right-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	border-left-color: #FFFFFF;
	background-color: #003366;
}
.thrColAbsHdr #pagetop-pas p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 12px;
	color: #FFFFCC;
}
.thrColAbsHdr #pagetop-pas h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 16px;
	color: #FFFFFF;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.thrColAbsHdr #pagetop-faqs {
	background-image: url(../img08/pagetop-faqs.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	height: 150px;
	width: 662px;
	padding-right: 133px;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 18px;
	border-top-width: 6px;
	border-top-style: solid;
	border-top-color: #FFFFFF;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-right-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	border-left-color: #FFFFFF;
	background-color: #003366;
}
.thrColAbsHdr #pagetop-faqs p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 12px;
	color: #FFFFCC;
}
.thrColAbsHdr #pagetop-faqs h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 16px;
	color: #FFFFFF;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.thrColAbsHdr #pagetop-contact {
	background-image: url(../img08/pagetop-contact.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	height: 150px;
	width: 662px;
	padding-right: 133px;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 18px;
	border-top-width: 6px;
	border-top-style: solid;
	border-top-color: #FFFFFF;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-right-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	border-left-color: #FFFFFF;
	background-color: #003366;
}
.thrColAbsHdr #pagetop-contact p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 12px;
	color: #FFFFCC;
}
.thrColAbsHdr #pagetop-contact h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 16px;
	color: #FFFFFF;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.thrColAbsHdr #pagetop-forum {
	background-image: url(../img08/pagetop-forum.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	height: 150px;
	width: 662px;
	padding-right: 133px;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 18px;
	border-top-width: 6px;
	border-top-style: solid;
	border-top-color: #FFFFFF;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-right-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	border-left-color: #FFFFFF;
	background-color: #003366;
}
.thrColAbsHdr #pagetop-forum p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 12px;
	color: #FFFFCC;
}
.thrColAbsHdr #pagetop-forum h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 16px;
	color: #FFFFFF;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.thrColAbsHdr #pagetop-library {
	background-image: url(../img08/pagetop-club-library.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	height: 150px;
	width: 662px;
	padding-right: 133px;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 18px;
	border-top-width: 6px;
	border-top-style: solid;
	border-top-color: #FFFFFF;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-right-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	border-left-color: #FFFFFF;
	background-color: #003366;
}
.thrColAbsHdr #pagetop-library p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 12px;
	color: #FFFFCC;
}
.thrColAbsHdr #pagetop-library h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 16px;
	color: #FFFFFF;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.thrColAbsHdr #pagetop-links {
	background-image: url(../img08/pagetop-links.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	height: 150px;
	width: 662px;
	padding-right: 133px;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 18px;
	border-top-width: 6px;
	border-top-style: solid;
	border-top-color: #FFFFFF;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-right-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	border-left-color: #FFFFFF;
	background-color: #003366;
}
.thrColAbsHdr #pagetop-links p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 12px;
	color: #FFFFCC;
}
.thrColAbsHdr #pagetop-links h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 16px;
	color: #FFFFFF;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.thrColAbsHdr #pagetop-archive {
	background-image: url(../img08/pagetop-archive.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	height: 150px;
	width: 662px;
	padding-right: 133px;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 18px;
	border-top-width: 6px;
	border-top-style: solid;
	border-top-color: #FFFFFF;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-right-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	border-left-color: #FFFFFF;
	background-color: #003366;
}
.thrColAbsHdr #pagetop-archive p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 12px;
	color: #FFFFCC;
}
.thrColAbsHdr #pagetop-archive h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 16px;
	color: #FFFFFF;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.thrColAbsHdr #pagetop-videos {
	background-image: url(../img08/pagetop-video.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	height: 150px;
	width: 662px;
	padding-right: 133px;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 18px;
	border-top-width: 6px;
	border-top-style: solid;
	border-top-color: #FFFFFF;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-right-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	border-left-color: #FFFFFF;
	background-color: #003366;
}
.thrColAbsHdr #pagetop-videos p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 12px;
	color: #FFFFCC;
}
.thrColAbsHdr #pagetop-videos h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 16px;
	color: #FFFFFF;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.thrColAbsHdr #sidebar2-left {
	position: absolute;
	top: 200px;
	right: 0;
	width: 143px; /* padding keeps the content of the div away from the edges */
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #000000;
	background-image: url(../img08/abp-poll-bground.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	padding-top: 60px;
	padding-right: 6px;
	padding-bottom: 18px;
	padding-left: 6px;
	line-height: 10px;
	font-weight: bold;
	float: left;
}
.thrColAbsHdr #sidebar1-poll {
	left: 0;
	width: 143px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #FFFFFF;
	background-image: url(../img08/abp-poll-bground.jpg);
	background-repeat: repeat-x;
	background-position: left top;
	padding-top: 60px;
	padding-right: 6px;
	padding-bottom: 18px;
	padding-left: 6px;
}
.thrColAbsHdr #mainContentWide iframe {
	margin: 0px;
	padding: 0px;
	border: 1px solid #CCCCCC;
}
.thrColAbsHdr #mainContent iframe {
	margin: 0px;
	padding: 0px;
	border: 1px solid #CCCCCC;
}
.thrColAbsHdr #sidebar1 p {
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.login {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 9px;
	font-weight: bold;
	color: #FFFFCC;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	line-height: 20px;
	margin: 0px;
}
.thrColAbsHdr #pagetop-classifieds {
	background-image: url(../img08/pagetop-video.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	height: 150px;
	width: 662px;
	padding-right: 133px;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 18px;
	border-top-width: 6px;
	border-top-style: solid;
	border-top-color: #FFFFFF;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-right-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	border-left-color: #FFFFFF;
	background-color: #003366;
}
.thrColAbsHdr #pagetop-classifieds p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 12px;
	color: #FFFFCC;
}
.thrColAbsHdr #pagetop-classifieds h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 16px;
	color: #FFFFFF;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.thrColAbsHdr #pagetop-classifieds a {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 12px;
	color: #FFFFFF;
}
.thrColAbsHdr  #pagetop-videos  a {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 12px;
	color: #FFFFFF;
}

.input_box {
	FONT-FAMILY: Tahoma, Arial, Helvetica, Sans-Serif;
	FONT-SIZE: 7pt;
	COLOR: #000000;
	BORDER:#AAAAAA 1px solid;
	BACKGROUND-COLOR: #FFFFFF;
}

.button {
	FONT-FAMILY: Tahoma, Arial, Helvetica, Sans-Serif;
	FONT-SIZE: 8pt;
	COLOR: #FFFFFF;
	BACKGROUND-COLOR: #000066;
	HEIGHT: 20px;
}
